<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网站迁移通知 - 考呀呀会计网校</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            color: #333;
        }
        
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .notification-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 800px;
            overflow: hidden;
            position: relative;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }
        
        .notification-card:hover {
            transform: translateY(-10px);
        }
        
        .header {
            background: linear-gradient(to right, #1a2a6c, #2c3e50);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .logo {
            position: absolute;
            top: 20px;
            left: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            font-size: 2.5rem;
            color: #fdbb2d;
        }
        
        .logo span {
            font-weight: 600;
            font-size: 1.5rem;
        }
        
        .content {
            padding: 40px;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .highlight {
            background: linear-gradient(to right, #ffecd2, #fcb69f);
            padding: 15px 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #b21f1f;
        }
        
        .highlight h3 {
            color: #b21f1f;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
        .url-box {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #e9ecef;
        }
        
        .url-box i {
            color: #1a2a6c;
            font-size: 1.5rem;
        }
        
        .countdown {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
        }
        
        .countdown-text {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .timer {
            font-size: 3rem;
            font-weight: 700;
            color: #b21f1f;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .timer span {
            background: #1a2a6c;
            color: white;
            padding: 10px 25px;
            border-radius: 10px;
            min-width: 80px;
            display: inline-block;
            text-align: center;
        }
        
        .actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary {
            background: linear-gradient(to right, #1a2a6c, #2c3e50);
            color: white;
            box-shadow: 0 5px 15px rgba(26, 42, 108, 0.4);
        }
        
        .btn-secondary {
            background: #f8f9fa;
            color: #333;
            border: 1px solid #dee2e6;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary:hover {
            background: linear-gradient(to right, #2c3e50, #1a2a6c);
        }
        
        .footer {
            background: #f8f9fa;
            padding: 20px;
            text-align: center;
            border-top: 1px solid #e9ecef;
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .timer {
                font-size: 2.5rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .header {
                padding: 20px 15px;
            }
            
            .header h1 {
                font-size: 1.7rem;
            }
            
            .timer {
                font-size: 2rem;
                gap: 8px;
            }
            
            .timer span {
                padding: 8px 15px;
                min-width: 60px;
            }
            
            .actions {
                flex-direction: column;
                gap: 10px;
            }
        }
    </style>
</head>
<body>
    <div class="notification-card">
        <div class="header">
            <div class="logo">
                <i class="fas fa-graduation-cap"></i>
                <span>考呀呀会计网校</span>
            </div>
            <h1>网站迁移通知</h1>
            <p>为您提供更优质的学习体验</p>
        </div>
        
        <div class="content">
            <p>尊敬的学员：</p>
            
            <p>感谢您一直以来对考呀呀会计网校的支持与信任！</p>
            
            <div class="highlight">
                <h3><i class="fas fa-exclamation-circle"></i> 重要通知</h3>
                <p>由于考呀呀会计网校各平台官网不再运营，电脑端网站页面与移动端网站页面已迁移至环球网校平台。</p>
            </div>
            
            <p>新平台网址（域名）已改为：</p>
            
            <div class="url-box">
                <i class="fas fa-link"></i>
                <span>http://www.hqwx.com</span>
            </div>
            
            <p>为确保广大学员的正常访问，原电脑端网站网址和移动端网站网址暂时保留，并会自动跳转至环球网校页面。</p>
            
            <p>给各位学员带来的不便深表歉意，希望大家未来在环球网校可以享受到更加优质的课程学习和服务体验！</p>
            
            <div class="countdown">
                <div class="countdown-text">页面将在 <span id="countdown">10</span> 秒后自动跳转至新平台</div>
                <div class="timer">
                    <span id="seconds">10</span>
                </div>
            </div>
            
            <div class="actions">
                <button class="btn btn-primary pulse" onclick="redirectNow()">
                    <i class="fas fa-external-link-alt"></i> 立即跳转至新平台
                </button>
                <button class="btn btn-secondary" onclick="stayOnPage()">
                    <i class="fas fa-times"></i> 暂不跳转
                </button>
            </div>
        </div>
        
        <div class="footer">
            <p>考呀呀会计网校 © 2023 | 服务热线：400-123-4567</p>
        </div>
    </div>

    <script>
        // 倒计时和跳转功能
        let countdown = 10;
        const countdownElement = document.getElementById('countdown');
        const secondsElement = document.getElementById('seconds');
        
        function updateCountdown() {
            countdownElement.textContent = countdown;
            secondsElement.textContent = countdown;
            
            if (countdown <= 0) {
                redirectNow();
            } else {
                countdown--;
                setTimeout(updateCountdown, 1000);
            }
        }
        
        function redirectNow() {
            window.location.href = "http://www.hqwx.com";
        }
        
        function stayOnPage() {
            // 重置倒计时为10秒
            countdown = 10;
            updateCountdown();
        }
        
        // 页面加载后开始倒计时
        document.addEventListener('DOMContentLoaded', function() {
            updateCountdown();
        });
    </script>
</body>
</html>
